feat(HEBO): Added initial support for single/mutli objective HEBO #166
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
NOTE: I will likely merge this soon given I have not heard back from HEBO developers.
DRAFT
This PR implements what I could gather from the HEBO documentation.
So far it seems I could get single objective optimization in and also multi-objective.
There's a few possible issues marked with
#TODO, such as HEBO not supporting an unbounded optimal (even if only theoretical) due to it's observe removing non-finite entries. Also tests still need to be added for HEBO space parsing, however it seems to at least function with a basic{"x": (1.0, 10.0)}space.Some other points:
ref_pointinGeneralBO, it seems I can leave it asNoneand that would seem safer than specifying my own. However if I have the information, it might makeGeneralBOmore effective to provide it. Not sure how it acts withinfboundaries as the reference point though.